home *** CD-ROM | disk | FTP | other *** search
/ Megahits 3 / Megahits 3 (1994)(GTI - Rhein-Main-Soft)(DE)[!].iso / module / utilities / delitracker130 / rexx / dt_mainwin.rexx < prev    next >
OS/2 REXX Batch file  |  1994-10-14  |  291b  |  26 lines

  1. /* DeliTracker - open/close MainWindow */
  2.  
  3. address 'rexx_DT'
  4. options results
  5.  
  6.  
  7. status G mwi
  8.  
  9. if result == "no" then do
  10.     openmainwin
  11. end
  12. else do
  13.     closemainwin
  14. end
  15.  
  16.  
  17. status G mwi
  18.  
  19. if result == "no" then do
  20.     say "Main Window is now closed..."
  21. end
  22. else do
  23.     say "Main Window is now open..."
  24. end
  25.  
  26.